home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 30 / Amiga Format AFCD30 (Sep 1998, Issue 114).iso / -screenplay- / hd_installers / indy / install-game < prev    next >
Text File  |  1998-06-29  |  1KB  |  72 lines

  1. (set #CI_unit 0)
  2. (set #CI_drive ("DF%ld:" #CI_unit))
  3. (set #rip "abaddon")
  4. (set #dismount "dismount")
  5.  
  6.  
  7. ;----------------------------
  8.  
  9. ;try to figure out a place where the user usually installs his games
  10. (if (exists "Games:" (noreq) )
  11.     (set @default-dest "Games:")
  12.     (if (exists "SYS:Games" (noreq) )
  13.         (set @default-dest "SYS:Games")
  14.         (if (exists "Work:Games" (noreq) )
  15.             (set @default-dest "Work:Games")
  16.             (if (exists "JEUX:" (noreq) )
  17.                (set @default-dest "JEUX:")
  18.                (set @default-dest "SYS:")
  19.             )
  20.         )
  21.     )
  22. )
  23.  
  24. (message "\n\n\nThis loader needs the JST program (NOT INCLUDED)\n to be copied in your path\n\n(if you don't have it already)\n\nJST is available from aminet (game/patch)")
  25.  
  26.  
  27. (set @default-dest
  28. (askdir
  29.     (prompt ("Where should %s installed ?\nA drawer \"%s\" will automatically created." @app-name @app-name))
  30.     (help @askdir-help)
  31.     (default @default-dest)
  32.     (disk)
  33. )
  34. )
  35.  
  36. (set #dest (tackon @default-dest @app-name))
  37.  
  38.  
  39. (makedir #dest
  40.     (help @makedir-help)
  41.     (infos)
  42. )
  43.  
  44. ;----------------------------
  45.  
  46. (copyfiles
  47.     (help @copyfiles-help)
  48.     (source "IndyHD")
  49.     (dest #dest)
  50.     (infos)
  51. )
  52. (copyfiles
  53.     (help @copyfiles-help)
  54.     (source "indyhd.readme")
  55.     (dest #dest)
  56.     (infos)
  57. )
  58.  
  59. (makeassign    #rip #dest )
  60.  
  61. (message ("\nPlease insert %s into df0:?\n\nThe screen will go blank" @app-name))
  62.  
  63.     (if
  64.         (= 0 (run ("ripindy nocaches QUIET")))
  65.         ("")
  66.         (abort "\"jst\" must be in your PATH !")
  67.     )
  68.  
  69. (makeassign    #rip)
  70. (exit)
  71.  
  72.